home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 August / Macworld (1999-08).dmg / Shareware World / Utilities / Data & Time / Remember? V3.3 / Delayed Startup Script next >
Encoding:
Text File  |  1999-05-17  |  455 b   |  14 lines  |  [TEXT/ToyS]

  1.  
  2. property secondsToWait : 10
  3. -- Change this value to determine the delay before the startup checks are performed.
  4.  
  5. tell application "Remember?"
  6.     -- Note that the 'delay' command is a relative new addition to AppleScript
  7.     -- (System 8.0 or later I believe.) This script won't compile under older
  8.     -- system software versions.
  9.     delay secondsToWait
  10.     
  11.     -- this is the Remember? specific command to perform the startup checks.
  12.     perform startup checks
  13. end tell
  14.